@charset "utf-8";
@import url(base.css );

.desc table {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    float: none;
}

.page {
    clear: both;
    padding-top: 50px;
    height: 60px;
}

.page table {
    border: 0;
    margin: 0;
    border-collapse: collapse;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.page table td {
    padding: 0;
}

.page li {
    float: left;
    border: 1px solid #8C8C8C;
    margin: 0px 3px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s ease 0s;
}

.page li:hover,
.page li.active {
    background-color: #8B8B8B;
    border-color: #8B8B8B;
}

.page li a {
    line-height: 28px;
    font-size: 13px;
    display: block;
    text-align: center;
    padding: 0px 10px;
}

.page li:hover a,
.page li.active a {
    color: #fff;
}

.ww {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
}

.top {
    background-color: #eee;
    height: 30px;
}

.top .ww {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top,
.top a {
    color: #666;
    line-height: 30px;
}

.top a {
    padding: 0 10px;
}

.head {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
    padding: 25px 0px;
    transition: all 0.3s;
}

/* 需要通过 JavaScript 给 .head 添加 sticky class */
.head.sticky {
    padding: 5px 0;
}

.head .ww {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s;
}

.head .ll img {
    height: 55px;
}

.head.sticky .ll img {
    height: 40px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: #fff;
    min-width: 500px;
}

.nav dl {
    position: relative;
    width: 180px;
    text-align: center;
}

.nav .line {
    height: 16px;
    width: 1px;
    background-color: #999999;
}

.nav dl dt {
    /* padding: 15px 0; */
    position: relative;
    background: none;
}

/* 解决下移 */
.nav dl dt::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    width: 0;
    margin: 0 auto;
    transition: all ease .3s;
    background: #01983b;
    height: 2px;
    z-index: 1000;
}

.nav dl:hover dt::after {
    width: 100%;
}

.nav dl dt a {
    display: block;
    background-color: #fff;
    line-height: 41px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.nav dl:hover dt a,
.nav dl.on dt a {
    color: #00A040;
}

.nav dl dd {
    position: absolute;
    display: none;
    width: 120%;
    z-index: 888;
    margin-left: -10%;
}

.nav dl:hover dd {
    display: block;
}

/* 解决下移 */
.nav dl dd div.box {
    background-color: #FFFFFF;
    margin-top: 5px;
    box-shadow: 0 5px 10px #000;
    padding-bottom: 5px;
}

.nav dl.dl dd div.li {
    position: relative;
}

/* 下拉 */
.nav dl.dl dd .p1 {
    margin: 0 15px;
    border-top: 1px dotted #cacaca;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav dl.dl dd .p1::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav dl.dl dd div.li:hover .p1::after {
    left: 100%;
}

.nav dl.dl dd div.li:first-child .p1 {
    border-top: 0;
}

.nav dl.dl dd div.li:hover .p1 {
    background-color: #00A040;
}

.nav dl.dl dd .p1 a {
    line-height: 1.5;
    color: #333;
    padding: 13px 0;
    display: block;
    font-size: 15px;
    transition: all 0.3s ease;
    /* color: #fff; */
}

/* 箭头 */
.nav dl.dl dd .p1 i {
    position: absolute;
    right: 10px;
    top: 18px;
    transition: transform 0.3s ease;
}

.nav dl.dl dd div.li:hover .p1 i {
    transform: translateX(3px);
}

.nav dl.dl dd div.li:hover .p1 a,
.nav dl.dl dd div.li:hover .p1 i {
    color: #fff;
}

/* 第三级 */
.nav dl.dl dd .p2 {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    z-index: 999;
    /* background-color: #00A040; */
    background-color: #F2F2F2;
    padding: 5px 0px;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav dl.dl dd div.li:hover .p2 {
    display: block;
    text-align: left;
    opacity: 1;
    transform: translateX(0);
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav dl.dl dd .p2 a {
    color: #333;
    display: block;
    line-height: 1.5;
    padding: 8px 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* border-bottom: 1px solid #fff; */
}

.nav dl.dl dd .p2 a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #00A040;
    transition: width 0.3s ease;
}

.nav dl.dl dd .p2 a:hover::before {
    width: 100%;
}

.nav dl.dl dd .p2 a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 160, 64, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav dl.dl dd .p2 a:hover::after {
    left: 100%;
}

.nav dl.dl dd .p2 a:hover {
    color: #00A040;
    transform: translateX(5px);
    background-color: rgba(0, 160, 64, 0.05);
}

/*  */
.desc .biaoti {
    display: none;
}

.banner img {
    width: 100%;
    height: auto;
}

.main {
    padding-top: 30px;
    padding-bottom: 40px;
    min-height: 300px;
}

.pleft {
    width: 282px;
    float: left;
    padding-bottom: 200px;
}

.pright {
    margin-left: 282px;
    overflow: hidden;
    padding-left: 60px;
}

.main_11 .pleft {
    width: 340px;
}

.main_11 .pright {
    margin-left: 340px;
}

.pleft dl {
    padding-left: 10px;
    margin-bottom: 5px;
    position: relative;
}

.pleft dl::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 3px;
    background: linear-gradient(to bottom, #006600, #00A040);
    transition: height 0.4s ease;
}

.pleft dl:hover::before,
.pleft dl.on::before {
    height: 100%;
}

.pleft dt {
    padding-left: 5px;
    transition: all 0.4s ease;
    border-bottom: 2px solid #D8D8D8;
    position: relative;
    overflow: hidden;
}

.pleft dt::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #006600, #00A040);
    transition: width 0.4s ease;
}

.pleft dl:hover dt::after,
.pleft dl.on dt::after {
    width: 100%;
}

.pleft dl a {
    transition: all 0.4s ease;
    position: relative;
}

/* 左侧导航链接悬停右移 */
.pleft dl a:hover {
    transform: translateX(10px);
}

.pleft dl dt a {
    padding: 7px 0px;
    display: block;
    color: #006600;
    /* color: #555; */
    font-weight: bold;
    font-size: 20px;
    word-break: break-all;
    line-height: 30px;
    /* transition: transform 0.5s ease; */
}

.pleft dl dt a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 160, 64, 0.1), transparent);
    transition: left 0.6s ease;
}

.pleft dl:hover dt a::after {
    left: 100%;
}

.pleft dl.on dt a {
    color: #D1A521;
}

.pleft dl dd {
    /* display: none; */
    border: 0;
    margin-bottom: 5px;
    padding: 0 15px;
    opacity: 0.9;
    transform: translateY(-5px);
    transition: all 0.4s ease;
}

.pleft dl:hover dd,
.pleft dl.on dd {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.pleft dl dd div {
    border-top: 3px solid #fff;
    position: relative;
    padding: 0px 10px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.pleft dl dd div:hover {
    background-color: rgba(0, 160, 64, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pleft dl dd div.on a,
.pleft dl dd div:hover a {
    color: #006600;
}

.pleft dl dd div .p1 {
    border-bottom: 1px dotted #cacaca;
    position: relative;
    overflow: hidden;
}

.pleft dl dd div .p1::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: left 0.6s ease;
    z-index: 1;
}

.pleft dl dd div:hover .p1::after {
    background: linear-gradient(90deg, transparent, rgba(0, 160, 64, 0.1), transparent);

}

.pleft dl dd div .p1 a {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    padding: 10px 0px;
    font-weight: 400;
    position: relative;
    z-index: 10;
    background:transparent;
}

.pleft dl dd div:hover .p1 a {
    color: #006600;
    transform: translateX(10px);
}

.pleft dl dd div.on .p1 a {
    color: #D1A521;
}

/* 箭头 */
.pleft dl dd .p1 i {
    position: absolute;
    right: 10px;
    top: 10px;
    transition: transform 0.3s ease;
}

.pleft dl dd div:hover .p1 i {
    transform: translateX(5px);
    color: #006600;
}

/* 右侧 */
.pleft dl dd div .p2 {
    position: absolute;
    padding: 5px 0px;
    left: 100%;
    width: 100%;
    top: 0;
    display: none;
    overflow: hidden;
    transition: all 0.5s ease;
    z-index: 999;
    background: #F2F2F2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    opacity: 0;
    transform: translateX(-10px);
}

.pleft dl dd div:hover .p2 {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: pleftFadeIn 0.3s forwards;
}

@keyframes pleftFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pleft dl dd div .p2 a {
    color: #333;
    display: block;
    transition: all 0.3s ease;
    line-height: 1.5;
    padding: 8px 10px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.pleft dl dd div .p2 a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #00A040;
    transition: width 0.3s ease;
}

.pleft dl dd div .p2 a:hover::before {
    width: 100%;
}

.pleft dl dd div .p2 a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 160, 64, 0.1), transparent);
    transition: left 0.5s ease;
}

.pleft dl dd div .p2 a:hover::after {
    left: 100%;
}

.pleft dl dd div .p2 a:hover {
    color: #00A040;
    transform: translateX(5px);
    background-color: rgba(0, 160, 64, 0.05);
}

.desc {
    padding: 10px 0px;
}

.desc p,
.desc span,
.desc font {
    margin: 0px 0px;
    color: #000;
    /*font-family: "Times New Roman", Times, serif;*/
    /*font-weight: normal !important;*/
    font-size: 16px;
    color: #666;
    line-height: 2.8;
    text-decoration: none;
}

.desc font {
    font-size: inherit;
}

.desc b,
.desc b span,
.desc b font {
    color: #333;
    font-weight: bold;
}

.desc table td {
    line-height: 36px;
    font-size: 16px;
}

.desc table.tbsolid {
    border: 0;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}

.desc table.tbsolid td {
    padding: 0;
    border: 1px solid #AAAAAA;
}

.body_24 .desc p {
    color: #000;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    line-height: 30px;
    text-decoration: none;
}

.desc .biaoti {
    padding-bottom: 10px;
}

.desc img {
    max-width: 100%;
    height: auto;
}

.pright .h3 {
    color: #060;
    /* color: #555; */
    font-size: 22px;
    font-weight: bold;
    line-height: 40px;
}

.plist {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* row-gap: 20px; */
    column-gap: 25px;
}

.plist dl dt a {
    height: 258px;
    display: block;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.plist dl dt a span {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    height: 258px;
    transition: all 0.5s ease;
}

.plist dl dt a:hover span {
    transform: scale(1.2);
}

.plist dl dd {
    height: 50px;
    padding-top: 10px;
    position: relative;
    overflow: hidden;
}

.plist dl dd a {
    line-height: 1.5;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    display: block;
    padding-bottom: 10px;
}

.plist dl dd a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, transparent, #00A040);
    transition: left 0.3s ease;
}

.plist dl:hover dd a {
    color: #00A040;
}

.plist dl:hover dd a::after {
    left: 0;
}

.nlist .rr {
    width: 275px;
    float: right;
    padding-right: 2px;
    /* overflow: hidden; */
}

.nlist .rr dl {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.nlist .rr dt a {
    display: block;
    overflow: hidden;
}

.nlist .rr dt img {
    width: 100%;
    transition: transform 0.3s ease;
}

.nlist .rr dl:hover dt img {
    transform: scale(1.1);
}

.nlist .rr dd {
    text-align: center;
    padding: 10px 0px;
}

.nlist .rr dd a {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.nlist .rr dl:hover dd a {
    color: #00A040;
}

.nlist .ll {
    margin-right: 300px;
    overflow: hidden;
    padding-top: 10px;
    padding-right: 15px;
}

.nlist .ll p {
    padding: 10px 0;
}

.nlist .ll p a {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.nlist .ll p a:hover {
    color: #D1A521;
    transform: translateX(10px);
}

.nlist .ll p a:hover::before {
    width: 15px;
}

.ncon {
    border: 1px solid #C2EDD0;
    background-color: #F0FBF5;
}

.ncon .h3 {
    color: #000;
    font-size: 16px;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
    height: 83px;
    padding-top: 40px;
    width: 80%;
    margin-left: auto;
    margin-right: auto
}

.ncon .data img {
    margin-bottom: 15px;
    box-shadow: 0px 2px 4px #989898;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.ncon .data {
    padding: 10px 20px 50px;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid #C2EDD0;
    min-height: 500px;
}

.ncon .data,
.ncon .data p,
.ncon .data div {
    color: #000;
    font-family: "Times New Roman", Times, serif !important;
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; */
    font-size: 16px;
    line-height: 36px;
    text-decoration: none;
}

.footbox {
    padding-top: 6px;
    clear: both;
}

.foot {
    height: 50px;
    background-color: #E2E2E2;
    text-align: right;
    padding-right: 60px;
    overflow: hidden;
}

.foot p,
.foot p a {
    line-height: 50px;
    color: #666;
}

.foot p a:hover {
    text-decoration: underline;
}

.fnavcon_0 {
    width: 0px;
    height: 0px;
    overflow: hidden;
}

.fnavcon_0 .fnavcon_1 {
    width: 9999px;
}

.fnavcon_0 #fnavcon {
    width: auto;
}

.fnavcon_0 #fnavcon a {
    color: #000;
    font-size: 16px;
    overflow-wrap: break-word;
    padding-right: 20px;
}

.fnavbox {
    height: 154px;
    overflow: hidden;
}

.fnav {
    padding-top: 11px;
}

.fnav1 {
    background: url(../images/fnavbg.png) repeat-x left 2px;
    height: 108px;
}

.fnav .ll {
    width: 20%;
    float: left;
    overflow: hidden;
}

.fnav .rr {
    margin-left: 20%;
}

.fnav .rr .li {
    width: 25%;
    float: left;
    height: 98px;
    position: relative;
}

.fnav .rr .li .bg {
    position: absolute;
    height: 100px;
    background: url(../images/fnavli.png) no-repeat left bottom;
    top: 0;
    width: 54px;
    overflow: hidden;
    z-index: 10;
}

.fnav .rr .li .bg1 {
    left: 0px;
}

.fnav .rr .li .bg2 {
    right: -54px;
    display: none;
}

.fnav .rr .li .dl {
    padding-left: 54px;
    /* position: relative; */
}

.fnav .rr .li dl {
    /* padding-left: 54px; */
    position: relative;
}

.fnav .rr .li.on dt {
    background-color: #DFE0DF;
}

.fnav .rr .li.on .bg1 {
    background-image: url(../images/ll.png);
}

.fnav .rr .li.on .bg2 {
    background-image: url(../images/rr.png);
    display: block;
    z-index: 20;
}

.fnav .rr .li.on dt span {
    color: #000;
}

.fnav .rr .li.li4 .bg2 {
    display: none;
}

.fnav .rr .li dl dt a {
    display: block;
    height: 100px;
}

.fnav .rr .li dl dt span {
    color: #fff;
    display: block;
    overflow: hidden;
    text-align: center;
}

.fnav .rr .li dl dt .s1 {
    font-size: 14px;
    height: 40px;
    line-height: 45px;
    margin-left: -80px;
    overflow: hidden;
    text-indent: 1000px;
}

.fnav .rr.fnav_1 .li dt .s1 {
    text-indent: 0px;
}

.fnav .rr.fnav_0 .li dt .s1 {
    text-indent: 0px;
}

.fnav .rr .li dt .s2 {
    font-size: 26px;
    height: 50px;
    line-height: 30px;
    font-weight: bold;
}

.fnav .rr .li dl dd {
    position: absolute;
    display: none;
    padding: 0px 0px;
    animation-duration: 1s;
    width: 100%;
    left: 0px;
    text-align: center
}

.fnav .rr .li dl dd p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.fnav .rr .li dl dd a {
    font-size: 16px;
    padding: 0px 10px;
    color: #000;
    word-wrap: break-word;
    white-space: nowrap;
    line-height: 22px;
}

.fnav .rr .li dl dd a:hover {
    color: #00C829
}

.fnav .rr .li.on dd {
    display: block;
}

.footbox {
    padding-top: 6px;
}

.foot {
    height: 50px;
    background-color: #E2E2E2;
    text-align: right;
    padding-right: 60px;
    line-height: 50px;
    color: #000;
}

.ddpage {
    display: flex;
    clear: both;
    justify-content: center;
    padding: 40px 0;
}

.ddpage ul {
    display: flex;
    border-left: 1px solid #eee;
}

.ddpage ul li {
    list-style: none;
    border: 1px solid #eee;
    border-left: 0;
}

.ddpage ul li a {
    color: #555;
    line-height: 2;
    padding: 0px 10px;
    font-size: 14px;
}

.ddpage li:hover {
    background-color: #D1A521;
}

.ddpage li.active {
    background-color: #00A040;
}

.ddpage li:hover a,
.ddpage li.active a {
    color: #fff;
}

/* 页脚样式 */
.ddfoot {
    background-color: #2C3333;
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
    box-shadow: inset 0 15px 15px -15px rgba(0, 0, 0, 0.4);
}

.ddfoot .blank1 {
    flex-grow: 1;
}

.ddfoot .blank2 {
    flex-grow: 2;
}

.ddfoot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #00A651, #FFD700, #00A651);
}

.ddfoot .footer-columns {
    display: flex;
    justify-content: space-between;
}

.ddfoot .left {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 220px;
    position: relative;
}

.ddfoot .left img {
    height: 80px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.ddfoot .left:hover img {
    transform: scale(1.05);
}

.ddfoot .left p {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #E7F6F2;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
}

.ddfoot .left p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #00A651, #FFD700);
    transition: width 0.3s ease;
}

.ddfoot .left:hover p::after {
    width: 80px;
}

.ddfoot .center {
    width: 580px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ddfoot .right {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ddfoot .right img {
    width: 140px;
    height: 140px;
    background-color: #fff;
    padding: 5px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ddfoot .right img:hover {
    transform: scale(1.05);
}

.ddfoot .right p {
    margin-top: 12px;
    font-size: 14px;
    color: #E7F6F2;
}

.ddfoot .footer-nav {
    margin-bottom: 20px;
}

.ddfoot .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.ddfoot .footer-nav li {
    margin-right: 10px;
}

.ddfoot .footer-nav a {
    color: #A5C9CA;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.ddfoot .footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #E7F6F2;
    transition: width 0.3s ease;
}

.ddfoot .footer-nav a:hover {
    color: #E7F6F2;
}

.ddfoot .footer-nav a:hover::after {
    width: 100%;
}

.ddfoot .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.ddfoot .contact-item img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    object-fit: contain;
    /* filter: brightness(0) invert(0.7); */
    transition: filter 0.3s ease;
}

.ddfoot .contact-item:hover img {
    filter: brightness(0) invert(1);
}

.ddfoot .contact-item p {
    color: #A5C9CA;
    margin: 0;
    font-size: 14px;
    transition: color 0.3s ease;
}

.ddfoot .contact-item:hover p {
    color: #E7F6F2;
}